home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / CHIP / Porady / Srodowisko PHP-MySQL / WAMP5 1.3 / wamp5_1.3.exe / {app} / Apache / include / Win9xConHook.h < prev   
C/C++ Source or Header  |  2004-02-20  |  2KB  |  57 lines

  1. /* Copyright 2000-2004 The Apache Software Foundation
  2.  *
  3.  * Licensed under the Apache License, Version 2.0 (the "License");
  4.  * you may not use this file except in compliance with the License.
  5.  * You may obtain a copy of the License at
  6.  *
  7.  *     http://www.apache.org/licenses/LICENSE-2.0
  8.  *
  9.  * Unless required by applicable law or agreed to in writing, software
  10.  * distributed under the License is distributed on an "AS IS" BASIS,
  11.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12.  * See the License for the specific language governing permissions and
  13.  * limitations under the License.
  14.  */
  15.  
  16. #ifndef AP_WIN9XCONHOOK_H
  17. #define AP_WIN9XCONHOOK_H
  18.  
  19. #ifdef WIN32
  20.  
  21. /* Windows9xServiceCtrlHandler registers a handler routine, frees the
  22.  * console window, and registers this process as a service in Win9x.
  23.  * It creats a hidden window of class "ApacheWin95ServiceMonitor"
  24.  * and titled by the name passed, which passes the WM_SHUTDOWN message 
  25.  * through the given HandlerRoutine's CTRL_SHUTDOWN event.
  26.  * Call with name of NULL to remove the Service handler.
  27.  */
  28. BOOL WINAPI Windows9xServiceCtrlHandler(PHANDLER_ROUTINE phandler, LPCSTR name);
  29.  
  30.  
  31. /* FixConsoleControlHandler registers a handler routine with the
  32.  * Win9xConHook.dll, creating a hidden window and forwarding the
  33.  * WM_ENDSESSION and WM_CLOSE messages to the given HandlerRoutine
  34.  * as CTRL_SHUTDOWN_EVENT, CTRL_LOGOFF_EVENT and CTRL_CLOSE_EVENT. 
  35.  * The application should still use SetConsoleCtrlHandler to grab
  36.  * the CTRL_BREAK_EVENT and CTRL_C_EVENT, if desired.
  37.  */
  38. BOOL WINAPI FixConsoleCtrlHandler(PHANDLER_ROUTINE phandler, BOOL add);
  39.  
  40.  
  41. /*
  42.  * Exported PostMessage Hook, never use this directly:
  43.  *
  44.  * LRESULT CALLBACK GetMsgProc(INT hc, WPARAM wParam, LPARAM lParam);
  45.  */
  46.  
  47.  
  48. /*
  49.  * Exported SendMessage Hook, never use this directly:
  50.  *
  51.  * LRESULT CALLBACK CallWndProc(INT hc, WPARAM wParam, LPARAM lParam);
  52.  */
  53.  
  54. #endif /* WIN32 */
  55.  
  56. #endif AP_WIN9XCONHOOK_H
  57.